configuration / ntp / ext-ntp-cfg / [NTP-ID]

CLI REST-API

ext-server-address

Extended Server Address
This is a read-write object and valid values are hosts.

Datatype-Help:
valid values can be an ipv4-address, an ipv6-address or a hostname.
the IP address should looks like this: A.B.C.D
every letter is one number that goes from 0 - 255.
example: 192.168.0.45
the ipv6-address should looks like this: AAAA:BBBB:CCCC:DDDD:EEEE:FFFF:GGGG:HHHH/I
letters A - H are hex-digits.
valid hex-digits are: 0-9 and a-f.
letter I is a decimal number that goes from 0 to 128 and is a subnetmask.
example: 2001:0db8:85a3:08d3:1319:8a2e:0370:7344/64
the hostname should be a string.
the maximal total-length is 255 characters.
the maximal label-length is 63 characters.
allowed characters are a-z, 0-9, dot and dash.
dashes are not allowed to be near dots.



See also:
/configuration/ntp/ext-ntp-cfg/[NTP-ID]
/configuration/ntp/ext-ntp-cfg/[NTP-ID]/ext-server-minpoll
/configuration/ntp/ext-ntp-cfg/[NTP-ID]/ext-server-maxpoll
/configuration/ntp/ext-ntp-cfg/[NTP-ID]/ext-server-sym-key
/configuration/ntp/ext-ntp-cfg/[NTP-ID]/ext-server-use-autokey
/configuration/ntp/ext-ntp-cfg/[NTP-ID]/ext-server-use-iburst

REST-API Support:


This object is supported by the REST API:

Method: GET
URL: /api/configuration/ntp/ext-ntp-cfg/.*


Example using curl:
curl /api/configuration/ntp/ext-ntp-cfg/.*


Method: PATCH
URL: /api/configuration/ntp/ext-ntp-cfg/.*
Body:
{
  "ext-server-address": "www.meinberg.de"
}

Example using curl:
curl -X PATCH /api/configuration/ntp/ext-ntp-cfg/.* -d
{
  "ext-server-address": "www.meinberg.de"
}